Socket
Socket
Sign inDemoInstall

@anchan828/gen-graphql-where-schema

Package Overview
Dependencies
Maintainers
1
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@anchan828/gen-graphql-where-schema

coAuto generation for where type


Version published
Weekly downloads
4
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

@anchan828/gen-graphql-where-schema

Description

Generate where schema by directive

Quick Start

import { genWhereTypes } from "@anchan828/gen-graphql-where-schema";
import { buildASTSchema, printSchema } from "graphql";

const schema = `

type Test {
  id: ID
}

type Query {
  tests: [Test] @where
}

`;

printSchema(buildASTSchema(genWhereTypes(schema)));
//=> type Test {
//   id: ID
// }
//
// type Query {
//   tests(where: TestWhere): [Test]
// }
//
// """Query of Test with using operators"""
// input TestWhere {
//   """Query with using id field"""
//   id: IDWhereOperator
//
//   """Query with using id field"""
//   OR: [TestWhere]
// }
//
// """Query type of ID with using operators"""
// type IDWhereOperator {
//   """Must match the given data exactly"""
//   eq: ID
//
//   """Must be different from the given data"""
//   not_eq: ID
//
//   """Must be an element of the array"""
//   in: [ID]
//
//   """Must not be an element of the array"""
//   not_in: [ID]
//
//   """Must be less than given value"""
//   lt: ID
//
//   """Must be less than or equal to given value"""
//   lte: ID
//
//   """Must be greater than given value"""
//   gt: ID
//
//   """Must be greater than or equal to given value"""
//   gte: ID
//
//   """Must be within the given range"""
//   between: [ID]
// }

Options

TODO

Supoprted Types

For now, supported types are Basic Types (String, Int, Float, Boolean, ID), and Enum

License

MIT.

FAQs

Package last updated on 16 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc